home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / arcers / tar316.zip / SYSUP.H < prev    next >
Text File  |  1980-07-24  |  553b  |  41 lines

  1. /* sysup.h - unify system macro definitions
  2.  * This is the part of the Tar program (see file tar.c)
  3.  * Author: Shaporev T.V.
  4.  * Creation date: 14 Dec 1990
  5.  */
  6. #ifdef unix
  7. #    ifndef UNIX
  8. #        define UNIX
  9. #    endif
  10. #endif
  11.  
  12. #ifdef M_XENIX
  13. #    ifndef UNIX
  14. #        define UNIX
  15. #    endif
  16. #endif
  17.  
  18. #ifdef demos
  19. #    ifndef DEMOS
  20. #        define DEMOS
  21. #    endif
  22. #endif
  23.  
  24. #ifdef DEMOS
  25. #    ifndef UNIX
  26. #        define UNIX
  27. #    endif
  28. #endif
  29.  
  30. #ifdef vms
  31. #    ifndef VMS
  32. #        define VMS
  33. #    endif
  34. #endif
  35.  
  36. #ifdef __TURBOC__
  37. #    ifndef MSDOS
  38. #        define MSDOS
  39. #    endif
  40. #endif
  41.